home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 205 / MF_UK_205_1.iso / pc / Files / Scenes / HOME.DIR / Internal_54_Websites Button.ls < prev    next >
Encoding:
Text File  |  2008-02-06  |  357 b   |  22 lines

  1. property Sp
  2. global gRootPath, dV
  3.  
  4. on mouseEnter me
  5.   cursor(280)
  6.   Sp.color = rgb(255, 255, 255)
  7. end
  8.  
  9. on mouseLeave me
  10.   cursor(-1)
  11.   Sp.color = rgb(162, 219, 246)
  12. end
  13.  
  14. on beginSprite me
  15.   Sp = sprite(me.spriteNum)
  16.   Sp.color = rgb(162, 219, 246)
  17. end
  18.  
  19. on mouseUp me
  20.   Ok = baOpenFile(gRootPath & "Files" & dV & "Links" & dV & "links.html", "maximised")
  21. end
  22.